Install:

1. add function in function.php

Code:
/* ------------------ */
function sed_selectbox_categories2($check, $name, $hideprivate=TRUE)
{
global $db_structure, $usr, $sed_cat, $L;

$result =  "<select name=\"$name\" onchange=\"redirect(this)\" size=\"1\">";

foreach($sed_cat as $i => $x)
{
$display = ($hideprivate) ? sed_auth('page', $i, 'W') : TRUE;

if (sed_auth('page', $i, 'R') && $i!='all' && $display)
{
$selected = ($i==$check) ? "selected=\"selected\"" : '';
$result .= "<option  value=\"admin.php?m=tools&amp;p=pageeditor&amp;action=".$i."\" $selected> ".$x['tpath']."</option>";
}
}
$result .= "</select>";
return($result);
}
/* ------------------ */